home *** CD-ROM | disk | FTP | other *** search
/ Inside Indy 1993 / Inside Indy 1993.iso / StartInsideIndy
Text File  |  1993-06-23  |  1KB  |  45 lines

  1. #!/bin/sh
  2. PATH=/bin:/usr/bin:/usr/sbin
  3. #check sbin
  4. flag=0
  5. if ( test ! -f /usr/sbin/inform ) ; then
  6.         ./sbin/inform "/usr/sbin/inform not found. Please copy it from \
  7. CDROM/sbin/inform"
  8.         flag=1
  9. fi
  10. if ( test ! -f /usr/sbin/confirm ) ; then
  11.         ./sbin/inform "/usr/sbin/confirm not found. Please copy it from \
  12. CDROM/sbin/confirm"
  13.         flag=1
  14. fi
  15. if ( test ! -f /usr/sbin/playaifc ) ; then
  16.         ./sbin/inform "/usr/sbin/playaifc not found. Please copy it from \
  17. CDROM/sbin/playaifc"
  18.         flag=1
  19. fi
  20. if ( test ! -f /usr/sbin/movieplayer ) ; then
  21.         ./sbin/inform "/usr/sbin/movieplayer not found. Please copy it from \
  22. CDROM/sbin/movieplayer"
  23.         flag=1
  24. fi
  25. if ( test ! -f /usr/sbin/showcase ) ; then
  26.         ./sbin/inform "/usr/sbin/showcase not found. Please copy it from \
  27. CDROM/sbin/showcase"
  28.         flag=1
  29. fi
  30. if ( test $flag -eq 1 ) ; then
  31.         ./sbin/inform "Start InsideIndy again after copying the missing files"
  32.         exit 1
  33. fi
  34. ###########
  35.  
  36.  
  37. if ( test "$INDYTMPDIR" = "" ) ; then
  38.     INDYTMPDIR=/usr/tmp/indytmpdir$$
  39.     mkdir $INDYTMPDIR
  40. fi
  41. (sleep 5; playaifc ./audio/Over1.aiff) &
  42. cd slides
  43. env TMPDIR=$INDYTMPDIR showcase -f -v GuinLive_01.sc
  44. cd ..
  45.